home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / dd32_10.zip / DD.MAN < prev    next >
Text File  |  1995-04-22  |  5KB  |  138 lines

  1. TITLE
  2.      Datum Directory
  3.  
  4. AUTHOR
  5.      Nader Sahib Eloshaiker
  6.  
  7. VERSION
  8.      1.0 Build 22
  9.  
  10. NAME
  11.      dd - dir program with ls command support and colored extensions
  12.  
  13. SYNOPSIS
  14.      dd [-acdDEFhHlNOpqrRsStux1?] file1 file2 file3 ...
  15.      dd file1 file2 file3 ... [-acdDEFhHlNOpqrsStux1?]
  16.      dd file1 [-acdDEFhHlNOpqrsStux1?] file2 file3 ...
  17.      dd file1 [-acdDEFhHlNOpqrsStux1?] file2 [-acdDEFhHlNOpqrsStux1?] file3 ...
  18.  
  19. DESCRIPTION
  20.      DD  is  a  WIN32 console application written for the Microsoft  WIN32  sub
  21.      system,   it will not however support the WIN32S subsystem.  DD  is  to  a
  22.      degree  compatible with the UNIX directory program LS as  far  as  certain
  23.      arguments are concerned. Current UNIX LS arguments supported are :
  24.  
  25.           [-acdFlqrRstux1]
  26.  
  27.      Work is still currently in  progress for the support  of the following
  28.      remaining LS arguments are :
  29.  
  30.           [-CgiLo]
  31.  
  32.      Additional commands supported native to DD are:
  33.  
  34.           [-DEHNOSp?]
  35.  
  36.      There are two modes of display using DD. One is the short or brief listing
  37.      the other is long or detailed. DD also supports pipes and output
  38.      redirection. eg .
  39.  
  40.           [long format display]
  41.           dd -l
  42.  
  43.           [short format display]
  44.           dd   or   dd -ll
  45.           (note "-l" flag toggles long display. "-ll" is a double toggle eg OFF
  46.           -l ON -l OFF)
  47.  
  48.           [formatting pipes]
  49.           dd |more       (page pause)
  50.  
  51.           [output redirection]
  52.           dd >dirlist.txt     (dumps screen to a file called "dirlist.txt")
  53.  
  54.      DD  supports  both old MS-DOS style wildcards and new MS-DOS (UNIX)  style
  55.      wildcards.  Multiple search conditions and wildcards are  permissible  and
  56.      there is no limit on the number of search conditions specified. eg.
  57.  
  58.           [multiple search conditions]
  59.                dd file1 file2 file3 ...
  60.           [wildcard search parameters]
  61.           dd *exe        (looks for files ending with "exe" for extensions and
  62.           filenames)
  63.           dd *.*e        (looks for files ending with "e" for extensions only)
  64.           dd .*e         (as above looks for files ending with "e" for
  65.           extensions only)
  66.           dd e*.*        (looks for files starting with "exe")
  67.           dd e*          (as above looks for files starting with "exe")
  68.           dd *.e*        (looks for files starting with "e" for extensions
  69.           only)
  70.           dd .e*         (as above looks for files starting with "e" for
  71.           extensions only)
  72.  
  73.      Arguments  maybe  passed  either via command prompt  or  via  the  COMMAND
  74.      ENVIRONMENT.  If an argument is specified in the COMMAND ENVIRONMENT,  the
  75.      argument  will be invoked every time DD is executed. Commands  passed  via
  76.      the COMMAND ENVIRONMENT maybe be done as follows :
  77.  
  78.           set DD32CMD = -acdDEFlNOpqrRsStux1
  79.  
  80.      This  is set in either the AUTOEXEC.BAT, Windows NT Control Panel - SYSTEM
  81.      or from the command prompt.
  82.  
  83.      Some  arguments will toggle so as to allow for deactivation if  preset  in
  84.      the  COMMAND  ENVIRONMENT.  Commands  passed  via the command prompt maybe
  85.      done as follows :
  86.  
  87.           dd [-acdDEFhHlNOpqrsStux1?] [-acdDEFhHlNOpqrsStux1?] ...
  88.  
  89. ARGUMENTS
  90.      Arguments only applicable to short display format :
  91.           s - Show Size (toggles)
  92.           x - Sort files horizontally (toggles)
  93.           1 - One column only (toggles)
  94.  
  95.      Arguments only applicable to long display format :
  96.           l - Long display format (toggles)
  97.  
  98.      Arguments only applicable to both display format :
  99.           a - All files (toggles)
  100.           c - Use creation times
  101.           d - Only display directories (toggles)
  102.           F - Attach  "*" to executable's  "/" to directories  "@" to scripts
  103.               (toggles)
  104.           h - Help screen for commands pause maybe invoked aswell
  105.           H - Help screen for color codes pause maybe invoked aswell
  106.           O - Show DOS 8.3 filename formats (toggles)
  107.           p - Pause (toggles)
  108.           q - Replace non-printing chars as "?"(toggles)
  109.           r - Reverse order of files (toggles)
  110.           R - Recurse directory (toggles)
  111.           t - Use last modified time
  112.           u - Use last accessed time
  113.           ? - Argument help screen
  114.  
  115.      Arguments used as sort conditions :
  116.      Note  that  more than one condition maybe passed. The order in which  they
  117.      are passed determines their priority
  118.           D - Sort by date
  119.           E - Sort by extension
  120.           N - Sort by Name
  121.           S - Sort by size
  122.  
  123. BUGS
  124.      Currently  the  ownership  and so on that maybe  associated  with  network
  125.      workspace has been excluded until Windows95 ships so that hopefully I  can
  126.      then test the code under both OS. So far there isn't any specific NT calls
  127.      but rather WIN32 so it should function correctly under Windows95.
  128.  
  129. COPYRIGHT
  130.      This  program can be freely distributed and used as long as it is not sold
  131.      or  made part of any commercial product. Use the program at your own risk,
  132.      I take no responsibility for the program and its output.
  133.  
  134. AUTHOR
  135.      Please  report  any  bugs  found or ideas to Mr  Nader  Eloshaiker.  Email
  136.      [9172319@edna.swin.edu.au] or [U3917231@scrooge.ee.swin.edu.au]
  137.  
  138.